home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-19 | 631 b | 21 lines | [TEXT/ttxt] |
- function xPrint
- put openPicture(curPort@.portRect) into jjj
- copyBits thePort@.portBits,thePort@.portBits,thePort@.portRect,thePort@.portRect,0,nil
- closePicture
- put newHandle(120) into thePrintRec
- prOpen
- PrintDefault(thePrintRec)
- if not PrStlDialog(thePrintRec) then exit xPrint
- if not PrJobDialog(thePrintRec) then exit xPrint
- put PrOpenDoc(thePrintRec,nil,nil) into thePrinterPort
- PrOpenPage thePrinterPort , NIL
- DrawPicture jjj,curPort@.PortRect
- PrClosePage(thePrinterPort)
- PrCloseDoc(thePrinterPort)
- PrClose
- setPort curPort
- disposHandle thePrintRec
- disposHandle j
- KillPicture jjj
- end xPrint
-